/* Styling #blog-posts */
#blog-posts .row {
    display: flex;
    align-items: center;
}

#blog-posts .column-title {
    margin-bottom: 0;
    /* Hindari margin bawah default untuk heading */
}


/* Styling untuk elemen kartu */
.custom-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: #fff;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-card-body {
    flex-grow: 1;
    padding: 0;
}

/* Styling untuk daftar fitur */
.aboutV2-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aboutV2-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.aboutV2-feature-list i {
    color: #4CAF50;
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 34px;
    text-align: center;
}

.aboutV2-feature-list-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.aboutV2-feature-list-wrapper .col-md-6 {
    flex: 1;
}

/* Text bold */
.text-bold {
    font-weight: bold;
}

/* Styling untuk banner di mobile */
@media (max-width: 768px) {
    #banner-area {
        background-size: cover;
        background-position: center;
        height: 100vh;
    }

    .banner-text {
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        padding: 20px;
    }

    .banner-title2 {
        font-size: 1.5rem;
    }

    .banner-titlep {
        font-size: 1rem;
        line-height: 1.5;
    }

    .breadcrumb {
        background: rgba(255, 255, 255, 0.8);
        padding: 5px 10px;
        border-radius: 5px;
        color: #000;
    }

    .breadcrumb a {
        color: #000;
    }

    .aboutV2-title {
        margin-top: 10px;
    }

    #main-container .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .stats-row {
        padding: 15px;
    }

    .stats-row .stat-item {
        margin-bottom: 20px;
    }

    .aboutV2-main-image {
        height: 250px;
    }

    .aboutV2-title {
        font-size: 1.25rem;
    }

    #main-container p {
        margin-bottom: 15px;
    }
}

/* Styling untuk desktop */
@media (min-width: 992px) {
    #main-container {
        padding: 40px 0;
    }

    .aboutV2-main-image {
        height: 400px;
        margin-right: 20px;
        border-radius: 10px;
    }

    .aboutV2-title {
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.4;
    }

    #main-container p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .stats-row {
        margin-top: 60px;
        padding: 50px 20px;
        border-radius: 20px;
        background-color: #f8f9fa;
    }

    .stats-row .stat-item {
        padding: 10px 15px;
        transition: all 0.3s ease-in-out;
    }

    .stats-row .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .stat-icon {
        margin-bottom: 15px;
    }

    .stat-content h6 {
        font-size: 1.1rem;
        font-weight: 600;
    }

    .stat-content p {
        font-size: 0.95rem;
        color: #6c757d;
    }
}

/* Styling untuk layar kecil */
@media (max-width: 576px) {
    .aboutV2-title {
        margin-top: 25px;
    }
}



/* Optimasi untuk ukuran latar belakang */
#banner-area {
    min-height: 400px;
    /* Pastikan tinggi area banner cukup */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.lazyload {
    background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
